5
5
.
.
4
4
.
.
b
b
o
o
r
r
d
d
e
e
r
r
I
I
n
n
f
f
o
o
[
[
R
R
]
]
.border modifier adds Border to a View.
Syntax
.border(Color.red, width: 2.0)
E
E
x
x
a
a
m
m
p
p
l
l
e
e
Example
struct ContentView: View {
var body: some View {
Text("This is some Text that I have entered. \n Second line increase Height.")
.border(Color.red, width: 2)
}
}
Output